-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: implement export page #586
feat: implement export page #586
Conversation
kyrylo-kh
commented
Sep 5, 2023
- Implemented new page - Export page
- Created new generic component - CourseStepper (also will be used in import page)
Thanks for the pull request, @Thposbsmt! Please note that it may take us up to several weeks or months to complete a review and merge your PR. Feel free to add as much of the following information to the ticket as you can:
All technical communication about the code itself will be done via the GitHub pull request interface. As a reminder, our process documentation is here. Please let us know once your PR is ready for our review and all tests are green. |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #586 +/- ##
==========================================
+ Coverage 84.55% 84.91% +0.35%
==========================================
Files 307 330 +23
Lines 4993 5296 +303
Branches 1102 1165 +63
==========================================
+ Hits 4222 4497 +275
- Misses 747 753 +6
- Partials 24 46 +22
☔ View full report in Codecov by Sentry. |
e313bb4
to
dff7343
Compare
Hi @Thposbsmt it looks like this PR reduces coverage, can you have a look? |
51f9e0b
to
3050dfb
Compare
courseId, | ||
}) => { | ||
const dispatch = useDispatch(); | ||
const isErrorModalOpen = useSelector(getIsErrorModalOpen); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was the reasoning for use redux to control the state of the visibility of the error modal versus useToggle
from paragon
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redux allow to change state anywhere. In this case isErrorModalOpen
changes in thunks
and ExportModalError.jsx
. We cannot do it with useToggle
3050dfb
to
74a9a37
Compare
There is a UI glitch on the MFE because of adding custom css for this paragon class "pgn__stepper-header-step-list ". |
@kyrylo-kh 🎉 Your pull request was merged! Please take a moment to answer a two question survey so we can improve your experience in the future. |